FEI  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
snl_fei_Broker_FEData.cpp
1 /*--------------------------------------------------------------------*/
2 /* Copyright 2005 Sandia Corporation. */
3 /* Under the terms of Contract DE-AC04-94AL85000, there is a */
4 /* non-exclusive license for use of this work by or on behalf */
5 /* of the U.S. Government. Export of this program may require */
6 /* a license from the United States Government. */
7 /*--------------------------------------------------------------------*/
8 
9 #include <fei_macros.hpp>
10 
11 #include <snl_fei_Broker_FEData.hpp>
12 
13 //----------------------------------------------------------------------------
16  int nodeIDType)
17  : feData_(feData),
18  matrixGraph_(matrixGraph),
19  nodeIDType_(nodeIDType),
20  setStructure_(false),
21  setMatrixMatrixGraph_(false),
22  lookup_(NULL)
23 {
24 }
25 
26 //----------------------------------------------------------------------------
28 {
29  delete lookup_;
30 }
31 
Broker_FEData(fei::SharedPtr< FiniteElementData > feData, fei::SharedPtr< fei::MatrixGraph > matrixGraph, int nodeIDType)