- remove dead code in lax parser
- C indent :) - new feature, we can now use float instead of pure integer in Delay/Capa parameters - merge loon and boog lax parser code
This commit is contained in:
parent
667c411d14
commit
021241e122
File diff suppressed because it is too large
Load Diff
|
@ -76,17 +76,17 @@ extern void savefilelax __P ((char *filename));
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
/* return the delay (in ps exp-12) of name for an input in lax file */
|
/* return the delay (in ps exp-12) of name for an input in lax file */
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
extern float getdelaylax __P ((char *name));
|
extern double getdelaylax __P ((char *name));
|
||||||
|
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
/* return the impedance(R in Ohm) of name for an input in lax file */
|
/* return the impedance(R in Ohm) of name for an input in lax file */
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
extern float getimpedancelax __P ((char *name));
|
extern double getimpedancelax __P ((char *name));
|
||||||
|
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
/* return the fanout(C in pF exp-12) of name for an output in lax file */
|
/* return the fanout(C in pF exp-12) of name for an output in lax file */
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
extern float getcapacitancelax __P ((char *name));
|
extern double getcapacitancelax __P ((char *name));
|
||||||
|
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
/* return the number of buffers to put after input in lax file */
|
/* return the number of buffers to put after input in lax file */
|
||||||
|
@ -106,10 +106,17 @@ extern int signalsavelax __P ((char *signame));
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
extern int getoptimlax __P (());
|
extern int getoptimlax __P (());
|
||||||
|
|
||||||
|
/***************************************************************************/
|
||||||
|
/* return 1 if lax matches with lofig */
|
||||||
|
/* look if all referenced names are in lofig */
|
||||||
|
/***************************************************************************/
|
||||||
|
extern int coherencelaxlofig __P ((lofig_list* lofig));
|
||||||
|
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
/* return 1 if lax matches with befig */
|
/* return 1 if lax matches with befig */
|
||||||
/* lokk if all referenced names are in befig */
|
/* lokk if all referenced names are in befig */
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
extern int coherencelax __P ((befig_list* befig));
|
extern int coherencelaxbefig __P ((befig_list* befig));
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -309,7 +309,7 @@ extern int main (int argc, char* argv[])
|
||||||
/*check coherence between LAX and befig*/
|
/*check coherence between LAX and befig*/
|
||||||
if (lax_file) {
|
if (lax_file) {
|
||||||
fprintf(stdout,"Controlling file '%s.lax'...\n",lax_file);
|
fprintf(stdout,"Controlling file '%s.lax'...\n",lax_file);
|
||||||
if (!coherencelax(befig)) exit(1);
|
if (!coherencelaxbefig(befig)) exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*check file error not detected by parser*/
|
/*check file error not detected by parser*/
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
|
|
||||||
|
|
||||||
#include <mut.h>
|
#include <mut.h>
|
||||||
|
#include <mlo.h>
|
||||||
#include <abl.h>
|
#include <abl.h>
|
||||||
#include <abe.h>
|
#include <abe.h>
|
||||||
#include <aut.h>
|
#include <aut.h>
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <mut.h>
|
#include <mut.h>
|
||||||
|
#include <mlo.h>
|
||||||
#include <abl.h>
|
#include <abl.h>
|
||||||
#include <abe.h>
|
#include <abe.h>
|
||||||
#include "bog_lax_param.h"
|
#include "bog_lax_param.h"
|
||||||
|
|
Loading…
Reference in New Issue