Imported Upstream version 4.6.0
[debian/atlc] / src / non_gui / check_for_boundaries.c
1 /* The function 'setup_arrays sets the cell_type[i][j] to be DIELECTRIC
2 if the material is non-metal. This function expands on that, checking if
3 the adjactent cells are dielectrics, or metals, and if dielectric,
4 whether or nor there is a boundary vertically, or horizontally between
5 two different dielectrics. Doing this once, is much faster than doing it
6 inside a loop, checking for all possibilities each time one needs to
7 know. */
8
9 #include "definitions.h"
10
11 extern int width, height;
12 extern unsigned char **oddity, **cell_type; 
13 extern double **Er;
14
15 void check_for_boundaries(void) 
16 {
17 }
18