代码搜索:assertion
找到约 1,246 项符合「assertion」的源代码
代码结果 1,246
www.eeworm.com/read/463644/7177299
m assert.m
function assert(b)
% assert(b) asserts that the condition b is always true.
% $Id: assert.m,v 1.1 2004/10/20 10:35:15 dmochiha Exp $
if b == true
return;
else
error('assertion failed.');
end
www.eeworm.com/read/446553/7576872
diary
vst_main
Warning: Matrix is close to singular or badly scaled.
Results may be inaccurate. RCOND = 1.587876e-309.
(Type "warning off MATLAB:nearlySingularMatrix" to suppress this warning.)
www.eeworm.com/read/138758/13217465
java assert.java
//: com:bruceeckel:tools:debug:Assert.java
// Assertion tool for debugging.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
p
www.eeworm.com/read/137955/13276022
c assert.c
#include
#include
#ifndef EXPORT
#define EXPORT
#endif
static char rcsid[] = "$Id: assert.c,v 1.2 2001/06/07 22:30:08 drh Exp $";
EXPORT int _assert(char *e, char *file, int lin