Browse Source

add a comment

pre-master-46
Holger Vogt 3 years ago
parent
commit
2275fb85da
  1. 2
      src/spicelib/analysis/cktsetbk.c

2
src/spicelib/analysis/cktsetbk.c

@ -27,6 +27,8 @@ CKTsetBreak(CKTcircuit *ckt, double time)
printf("[t:%e] \t want breakpoint for t = %e\n", ckt->CKTtime, time);
#endif
/* If time equals ckt->CKTtime, but differences due to
limtations of double precision exist */
if (AlmostEqualUlps(time, ckt->CKTtime, 3)) {
#ifdef TRACE_BREAKPOINT // #if (1)
fprintf(stderr, "Warning: Setting a new breakpoint at %e is ignored,\n as current time is %e\n", time, ckt->CKTtime);

Loading…
Cancel
Save