/usr/include/spooles/EGraph/EGraph.h is in libspooles-dev 2.2-11.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | /* EGraph.h */
#include "../cfiles.h"
#include "../Graph.h"
#include "../IVL.h"
/*====================================================================*/
/*
---------------------------------------------------------------
the EGraph object stores an element graph
type -- type of element graph
0 --> vertices have unit weight
1 --> vertices are weighted
nelem -- # of elements
nvtx -- # of vertices
adj -- IVL object that holds the lists
of elements and their vertices
vwghts -- pointer to vector of vertex weights, NULL if type = 0
created -- 95nov03, cca
---------------------------------------------------------------
*/
typedef struct _EGraph {
int type ;
int nelem ;
int nvtx ;
IVL *adjIVL ;
int *vwghts ;
} EGraph ;
/*====================================================================*/
/*
------------------------------------------------------------------------
------ methods found in basics.c ---------------------------------------
------------------------------------------------------------------------
*/
/*
-----------------------
constructor
created -- 95nov03, cca
-----------------------
*/
EGraph *
EGraph_new (
void
) ;
/*
-----------------------
set the default fields
created -- 95nov03, cca
-----------------------
*/
void
EGraph_setDefaultFields (
EGraph *eg
) ;/*
-----------------------
clear the data fields
created -- 95nov03, cca
-----------------------
*/
void
EGraph_clearData (
EGraph *eg
) ;
/*
-----------------------
destructor
created -- 95nov03, cca
-----------------------
*/
void
EGraph_free (
EGraph *eg
) ;
/*====================================================================*/
/*
------------------------------------------------------------------------
------ methods found in init.c -----------------------------------------
------------------------------------------------------------------------
*/
/*
---------------------------------------
purpose -- initialize the EGraph object
created -- 96oct24, cca
---------------------------------------
*/
void
EGraph_init (
EGraph *egraph,
int type,
int nelem,
int nvtx,
int IVL_type
) ;
/*====================================================================*/
/*
------------------------------------------------------------------------
------ methods found in mkAdjGraph.c -----------------------------------
------------------------------------------------------------------------
*/
/*
----------------------------------------------------
create a Graph object that holds the adjacency graph
of the assembled elements.
created -- 95nov03, cca
----------------------------------------------------
*/
Graph *
EGraph_mkAdjGraph (
EGraph *eg
) ;
/*====================================================================*/
/*
------------------------------------------------------------------------
------ methods found in misc.c -----------------------------------------
------------------------------------------------------------------------
*/
/*
--------------------------------------------------------------
make an element graph for a n1 x n2 grid with ncomp components
created -- 95nov03, cca
--------------------------------------------------------------
*/
EGraph *
EGraph_make9P (
int n1,
int n2,
int ncomp
) ;
/*
-------------------------------------------------------------------
make an element graph for a n1 x n2 x n3 grid with ncomp
components
created -- 95nov03, cca
-------------------------------------------------------------------
*/
EGraph *
EGraph_make27P (
int n1,
int n2,
int n3,
int ncomp
) ;
/*====================================================================*/
/*
------------------------
IO methods found in IO.c
-----------------------
*/
/*
-------------------------------------------------
purpose -- to read in a EGraph object from a file
input --
fn -- filename, must be *.egraphb or *.egraphf
return value -- 1 if success, 0 if failure
created -- 95nov03, cca
-------------------------------------------------
*/
int
EGraph_readFromFile (
EGraph *egraph,
char *fn
) ;
/*
--------------------------------------------------------
purpose -- to read a EGraph object from a formatted file
return value -- 1 if success, 0 if failure
created -- 95nov03, cca
--------------------------------------------------------
*/
int
EGraph_readFromFormattedFile (
EGraph *egraph,
FILE *fp
) ;
/*
----------------------------------------------------
purpose -- to read a EGraph object from a binary file
return value -- 1 if success, 0 if failure
created -- 95nov03, cca
----------------------------------------------------
*/
int
EGraph_readFromBinaryFile (
EGraph *egraph,
FILE *fp
) ;
/*
--------------------------------------------
purpose -- to write a EGraph object to a file
input --
fn -- filename
*.egraphb -- binary
*.egraphf -- formatted
anything else -- for human eye
return value -- 1 if success, 0 otherwise
created -- 95nov03, cca
--------------------------------------------
*/
int
EGraph_writeToFile (
EGraph *egraph,
char *fn
) ;
/*
------------------------------------------------------
purpose -- to write a EGraph object to a formatted file
return value -- 1 if success, 0 otherwise
created -- 95nov03, cca
------------------------------------------------------
*/
int
EGraph_writeToFormattedFile (
EGraph *egraph,
FILE *fp
) ;
/*
---------------------------------------------------
purpose -- to write a EGraph object to a binary file
return value -- 1 if success, 0 otherwise
created -- 95nov03, cca
---------------------------------------------------
*/
int
EGraph_writeToBinaryFile (
EGraph *egraph,
FILE *fp
) ;
/*
-------------------------------------------------
purpose -- to write a EGraph object for a human eye
return value -- 1 if success, 0 otherwise
created -- 95nov03, cca
-------------------------------------------------
*/
int
EGraph_writeForHumanEye (
EGraph *egraph,
FILE *fp
) ;
/*
-----------------------------------------------------------
purpose -- to write out the statistics for the EGraph object
return value -- 1 if success, 0 otherwise
created -- 95nov03, cca
-----------------------------------------------------------
*/
int
EGraph_writeStats (
EGraph *egraph,
FILE *fp
) ;
/*====================================================================*/
/*
-------------------------------------
miscellaneous methods found in misc.c
-------------------------------------
*/
/*--------------------------------------------------------------------*/
/*
-----------------------------------------------------
return the element graph for a 9 point operator on a
n1 x n2 grid with ncomp components at each grid point
-----------------------------------------------------
*/
EGraph *
EGraph_make9P ( int n1, int n2, int ncomp ) ;
/*
----------------------------------------------------------
return the element graph for a 27 point operator on a
n1 x n2 x n3 grid with ncomp components at each grid point
----------------------------------------------------------
*/
EGraph *
EGraph_make27P ( int n1, int n2, int n3, int ncomp ) ;
/*--------------------------------------------------------------------*/
|