-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.h
More file actions
29 lines (22 loc) · 944 Bytes
/
global.h
File metadata and controls
29 lines (22 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// This file contains code from NVSim, (c) 2012-2013, Pennsylvania State University
//and Hewlett-Packard Company. See LICENSE_NVSim file in the top-level directory.
//No part of DESTINY Project, including this file, may be copied,
//modified, propagated, or distributed except according to the terms
//contained in the LICENSE file.
#ifndef __DESTINY_GLOBAL_H__
#define __DESTINY_GLOBAL_H__
#include "InputParameter.h"
#include "Technology.h"
#include "MemCell.h"
#include "Wire.h"
extern InputParameter *inputParameter;
extern Technology *tech;
extern Technology *devtech;
extern MemCell *cell;
extern Technology *gtech;
extern Wire *localWire; /* The wire type of local interconnects (for example, wire in mat) */
extern Wire *globalWire; /* The wire type of global interconnects (for example, the ones that connect mats) */
extern MemCell **sweepCells;
const double invalid_value = 1e41;
const double infinite_ramp = 1e41;
#endif