1 |
/* $Id$ */ |
2 |
/**************************************************************/ |
3 |
|
4 |
/* Finley: Mesh: NodeFile */ |
5 |
|
6 |
/* returns the maximum and minimum node id number of nodes: */ |
7 |
|
8 |
/**************************************************************/ |
9 |
|
10 |
/* Copyrights by ACcESS Australia 2003 */ |
11 |
/* Author: gross@access.edu.au */ |
12 |
/* Version: $Id$ */ |
13 |
|
14 |
/**************************************************************/ |
15 |
|
16 |
#include "NodeFile.h" |
17 |
#include "Common.h" |
18 |
#include "Util.h" |
19 |
|
20 |
/**************************************************************/ |
21 |
|
22 |
|
23 |
void Finley_NodeFile_setIdRange(maybelong* min_id,maybelong* max_id,Finley_NodeFile* in) { |
24 |
*min_id=Finley_Util_getMinInt(1,in->numNodes,in->Id); |
25 |
*max_id=Finley_Util_getMaxInt(1,in->numNodes,in->Id); |
26 |
} |
27 |
/* |
28 |
* $Log$ |
29 |
* Revision 1.1 2004/10/26 06:53:57 jgs |
30 |
* Initial revision |
31 |
* |
32 |
* Revision 1.1.1.1 2004/06/24 04:00:40 johng |
33 |
* Initial version of eys using boost-python. |
34 |
* |
35 |
* |
36 |
*/ |