A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
these_gilles.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
7 dec
[these_gilles.git]
/
THESE
/
codes
/
graphe
/
GCmex1.9
/
bagon_assert.h
1
#ifndef _BAGON_ASSERT_H_
2
#define _BAGON_ASSERT_H_
3
4
#include "mex.h"
5
6
#define assert(x) if (!(x)) { mexErrMsgTxt(#x);}
7
8
#define warn(x) {mexWarnMsgTxt((x));}
9
10
#endif // _BAGON_ASSERT_H_