X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fnon_gui%2Fcheck_for_boundaries.c;fp=src%2Fnon_gui%2Fcheck_for_boundaries.c;h=0000000000000000000000000000000000000000;hb=ec2d2ab8e90a0c4b86ffc2385655c2fb27fcacd9;hp=632314d12d9a6c4ec8487fde2c0801e362f7722b;hpb=795fb988211df268a8f7724bd2f4493c594abee9;p=debian%2Fatlc diff --git a/src/non_gui/check_for_boundaries.c b/src/non_gui/check_for_boundaries.c deleted file mode 100644 index 632314d..0000000 --- a/src/non_gui/check_for_boundaries.c +++ /dev/null @@ -1,18 +0,0 @@ -/* The function 'setup_arrays sets the cell_type[i][j] to be DIELECTRIC -if the material is non-metal. This function expands on that, checking if -the adjactent cells are dielectrics, or metals, and if dielectric, -whether or nor there is a boundary vertically, or horizontally between -two different dielectrics. Doing this once, is much faster than doing it -inside a loop, checking for all possibilities each time one needs to -know. */ - -#include "definitions.h" - -extern int width, height; -extern unsigned char **oddity, **cell_type; -extern double **Er; - -void check_for_boundaries(void) -{ -} -