From: John P. <jwp...@gm...> - 2018-01-29 17:12:51
|
On Mon, Jan 29, 2018 at 9:59 AM, Manav Bhatia <bha...@gm...> wrote: > Hi, > > The source code says that the following method is deprecated: > > ImplicitSystem::get_linear_solver() > > This is, however, extensively being used in implicit_system.C. > > Is there a different method that I should be looking to use? > Hmm... "deprecated" is a bit of a misnomer here, I think what will eventually happen is that the base class implementation will be changed into a libmesh_error() to prevent it from being accidentally called. The usage you are referring to in implicit_system.C therefore represents calls to derived class implementations, and should remain as-is. If you are currently seeing a deprecation message from calling this function, you are probably doing something wrong and need to fix your code, but I doubt that's the case? -- John |