⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 globals.c

📁 主要进行大规模的电路综合
💻 C
字号:
/* * Revision Control Information * * $Source: /projects/mvsis/Repository/mvsis-1.3/src/sis/espresso/globals.c,v $ * $Author: wjiang $ * $Revision: 1.1.1.1 $ * $Date: 2003/02/24 22:24:08 $ * */#include "espresso.h"/* *    Global Variable Declarations */unsigned int debug;              /* debug parameter */bool verbose_debug;              /* -v:  whether to print a lot */char *total_name[TIME_COUNT];    /* basic function names */long total_time[TIME_COUNT];     /* time spent in basic fcts */int total_calls[TIME_COUNT];     /* # calls to each fct */bool echo_comments;		 /* turned off by -eat option */bool echo_unknown_commands;	 /* always true ?? */bool force_irredundant;          /* -nirr command line option */bool skip_make_sparse;bool kiss;                       /* -kiss command line option */bool pos;                        /* -pos command line option */bool print_solution;             /* -x command line option */bool recompute_onset;            /* -onset command line option */bool remove_essential;           /* -ness command line option */bool single_expand;              /* -fast command line option */bool summary;                    /* -s command line option */bool trace;                      /* -t command line option */bool unwrap_onset;               /* -nunwrap command line option */bool use_random_order;		 /* -random command line option */bool use_super_gasp;		 /* -strong command line option */char *filename;			 /* filename PLA was read from */struct pla_types_struct pla_types[] = {    "-f", F_type,    "-r", R_type,    "-d", D_type,    "-fd", FD_type,    "-fr", FR_type,    "-dr", DR_type,    "-fdr", FDR_type,    "-fc", F_type | CONSTRAINTS_type,    "-rc", R_type | CONSTRAINTS_type,    "-dc", D_type | CONSTRAINTS_type,    "-fdc", FD_type | CONSTRAINTS_type,    "-frc", FR_type | CONSTRAINTS_type,    "-drc", DR_type | CONSTRAINTS_type,    "-fdrc", FDR_type | CONSTRAINTS_type,    "-pleasure", PLEASURE_type,    "-eqn", EQNTOTT_type,    "-eqntott", EQNTOTT_type,    "-kiss", KISS_type,    "-cons", CONSTRAINTS_type,    "-scons", SYMBOLIC_CONSTRAINTS_type,    0, 0};struct cube_struct cube, temp_cube_save;struct cdata_struct cdata, temp_cdata_save;int bit_count[256] = {  0,1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,  1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,  1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,  2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,  1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,  2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,  2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,  3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -