FE_VertexIter.cppGo to the documentation of this file.00001 /* ****************************************************************** ** 00002 ** OpenSees - Open System for Earthquake Engineering Simulation ** 00003 ** Pacific Earthquake Engineering Research Center ** 00004 ** ** 00005 ** ** 00006 ** (C) Copyright 1999, The Regents of the University of California ** 00007 ** All Rights Reserved. ** 00008 ** ** 00009 ** Commercial use of this program without express permission of the ** 00010 ** University of California, Berkeley, is strictly prohibited. See ** 00011 ** file 'COPYRIGHT' in main directory for information on usage and ** 00012 ** redistribution, and for a DISCLAIMER OF ALL WARRANTIES. ** 00013 ** ** 00014 ** Developed by: ** 00015 ** Frank McKenna (fmckenna@ce.berkeley.edu) ** 00016 ** Gregory L. Fenves (fenves@ce.berkeley.edu) ** 00017 ** Filip C. Filippou (filippou@ce.berkeley.edu) ** 00018 ** ** 00019 ** ****************************************************************** */ 00020 00021 // $Revision: 1.1.1.1 $ 00022 // $Date: 2000/09/15 08:23:21 $ 00023 // $Source: /usr/local/cvs/OpenSees/SRC/graph/graph/FE_VertexIter.cpp,v $ 00024 00025 00026 // File: ~/analysis/model/simple/FE_VertexIter.C 00027 // 00028 // Written: fmk 00029 // Created: Fri Sep 20 15:27:47: 1996 00030 // Revision: A 00031 // 00032 // Description: This file contains the method definitions for class 00033 // FE_VertexIter. FE_VertexIter is a class for iterating through the 00034 // vertices of an FE_Graph. 00035 00036 00037 #include <FE_Graph.h> 00038 #include <FE_VertexIter.h> 00039 #include <Vertex.h> 00040 00041 // FE_VertexIter(FE_Graph &theGraph): 00042 // constructor that takes the graph, just the basic iter 00043 00044 FE_VertexIter::FE_VertexIter(FE_Graph &theGraph) 00045 :myGraph(theGraph), currIndex(0), numDone(0) 00046 { 00047 } 00048 00049 00050 FE_VertexIter::~FE_VertexIter() 00051 { 00052 } 00053 00054 void 00055 FE_VertexIter::reset(void) 00056 { 00057 currIndex = 0; 00058 numDone = 0; 00059 } 00060 00061 Vertex * 00062 FE_VertexIter::operator()(void) 00063 { 00064 // check if we still have vertices in the Graph 00065 // if not return 0, indicating we are done 00066 if (numDone >= myGraph.numVertex) 00067 return 0; 00068 00069 // search through domains ele list till we find the next element 00070 while ((currIndex < myGraph.sizeVertices) 00071 && (myGraph.theVertices[currIndex] == 0)) 00072 currIndex++; 00073 00074 // if not at the end of the list return the element 00075 if (currIndex < myGraph.sizeVertices) { 00076 Vertex *result = myGraph.theVertices[currIndex]; 00077 numDone++; currIndex++; 00078 return(result); 00079 } 00080 return (0); 00081 } 00082 00083 00084 00085 00086 00087 00088 |