www.mooseframework.org
LineSearch.C
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #include "LineSearch.h"
11 #include "MooseApp.h"
12 
15 {
17  params.registerBase("LineSearch");
18  return params;
19 }
20 
22  : MooseObject(parameters),
23  _fe_problem(*getCheckedPointerParam<FEProblem *>("_fe_problem", "Must be using FEProblem.")),
24  _nl_its(0)
25 {
26 }
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
Definition: FEProblem.h:20
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
void registerBase(const std::string &value)
This method must be called from every base "Moose System" to create linkage with the Action System...
Every object that can be built by the factory should be derived from this class.
Definition: MooseObject.h:33
static InputParameters validParams()
Definition: LineSearch.C:14
static InputParameters validParams()
Definition: MooseObject.C:25
LineSearch(const InputParameters &parameters)
Definition: LineSearch.C:21