Xyce  6.1
N_NLS_fwd.h
Go to the documentation of this file.
1 //-----------------------------------------------------------------------------
2 // Copyright Notice
3 //
4 // Copyright 2002 Sandia Corporation. Under the terms
5 // of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S.
6 // Government retains certain rights in this software.
7 //
8 // Xyce(TM) Parallel Electrical Simulator
9 // Copyright (C) 2002-2011 Sandia Corporation
10 //
11 // This program is free software: you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation, either version 3 of the License, or
14 // (at your option) any later version.
15 //
16 // This program is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
20 //
21 // You should have received a copy of the GNU General Public License
22 // along with this program. If not, see <http://www.gnu.org/licenses/>.
23 //-----------------------------------------------------------------------------
24 
25 //-------------------------------------------------------------------------
26 // Filename : $RCSfile: N_NLS_fwd.h,v $
27 //
28 // Purpose : Forward declarations
29 //
30 // Special Notes : Forward declaring everything as a class breaks if the implementation of the type changes (like during
31 // templatization)
32 //
33 // Creator : David G. Baur Raytheon Sandia National Laboratories 1355
34 //
35 // Creation Date : 2013/04/18 18:01:27
36 //
37 // Revision Information:
38 // ---------------------
39 //
40 // Revision Number: $Revision: 1.6 $
41 //
42 // Revision Date : $Date: 2015/05/13 14:22:07 $
43 //
44 // Current Owner : $Author: dgbaur $
45 //-------------------------------------------------------------------------
46 
47 #ifndef Xyce_N_NLS_fwd_h
48 #define Xyce_N_NLS_fwd_h
49 
50 namespace Xyce {
51 namespace Nonlinear {
52 
53 //-----------------------------------------------------------------------------
54 // Enum : AnalysisMode
55 // Description : These anlysis modes influence the choice of parameters for
56 // the nonlinear solver. The mode is set by the
57 // setAnalysisMode() function in the Manager class.
58 //-----------------------------------------------------------------------------
60 {
67 };
68 
69 class Manager;
70 class ParamMgr;
71 class ReturnCodes;
72 class NonLinInfo;
73 class NLParams;
74 class NonLinearSolver;
75 class ConductanceExtractor;
76 class Sensitivity;
77 class TwoLevelNewton;
78 class ConstraintBT;
79 class MatrixFreeEpetraOperator;
80 class DampedNewton;
81 
82 namespace N_NLS_NOX {
83  class SharedSystem;
84  class Group;
85  class Vector;
86  class AugmentLinSys;
87  class Interface;
88 }
89 
90 namespace N_NLS_LOCA {
91  class Group;
92 }
93 
94 } // namespace Nonlinear
95 } // namespace Xyce
96 
97 namespace LOCA {
98  class GlobalData;
99  class Stepper;
100  namespace MultiContinuation {
101  class AbstractGroup;
102  }
103  namespace StatusTest {
104  class Wrapper;
105  }
106 }
107 
108 namespace NOX {
109  namespace Abstract {
110  class Vector;
111  class Group;
112  }
113  namespace Parameter {
114  class List;
115  }
116  namespace Status {
117  class Test;
118  }
119 }
120 
121 #endif // Xyce_N_NLS_fwd_h
Definition: N_NLS_fwd.h:97
Pure virtual class to augment a linear system.
Definition: N_NLS_fwd.h:108