Jspice3
cktbkdum.c
Go to the documentation of this file.
1 /***************************************************************************
2 JSPICE3 adaptation of Spice3f2 - Copyright (c) Stephen R. Whiteley 1992
3 Copyright 1990 Regents of the University of California. All rights reserved.
4 Authors: 1985 Thomas L. Quarles
5  1993 Stephen R. Whiteley
6 ****************************************************************************/
7 
8  /* CKTbreakDump(ckt) - dump the breakpoint table associated with
9  * the given circuit
10  */
11 
12 #include "spice.h"
13 #include <stdio.h>
14 #include "cktdefs.h"
15 #include "util.h"
16 #include "cktext.h"
17 
18 
19 void
21 
22 CKTcircuit *ckt;
23 {
24  int i;
25 
26  for (i = 0; i < ckt->CKTbreakSize; i++) {
27  (void)printf(
28  "breakpoint table entry %d is %g\n",i,*(ckt->CKTbreaks+i));
29  }
30 }
void CKTbreakDump(CKTcircuit *ckt)
Definition: cktbkdum.c:20