/usr/include/deal.II/lac/solver_control.h is in libdeal.ii-dev 8.1.0-6ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 | // ---------------------------------------------------------------------
// $Id: solver_control.h 31722 2013-11-20 09:54:38Z kronbichler $
//
// Copyright (C) 1998 - 2013 by the deal.II authors
//
// This file is part of the deal.II library.
//
// The deal.II library is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the deal.II distribution.
//
// ---------------------------------------------------------------------
#ifndef __deal2__solver_control_h
#define __deal2__solver_control_h
#include <deal.II/base/config.h>
#include <deal.II/base/subscriptor.h>
#include <vector>
DEAL_II_NAMESPACE_OPEN
class ParameterHandler;
/*!@addtogroup Solvers */
/*@{*/
/**
* Control class for iterative solvers.
*
* Used by iterative methods to determine whether the iteration should
* be continued. To this respect, the virtual function <tt>check()</tt> is
* called in each iteration with the current iteration step and the
* value indicating convergence (usually the residual).
*
* After the iteration has terminated, the functions @p last_value and
* @p last_step can be used to obtain information about the final state
* of the iteration.
*
* <tt>check()</tt> can be replaced in derived classes to allow for more
* sophisticated tests.
*
*
* <h3>State</h3>
* The return states of the check function are of type #State,
* which is an enum local to this class. It indicates the state the
* solver is in.
*
* The possible values of State are
* <ul>
* <li> <tt>iterate = 0</tt>: continue the iteration.
* <li> @p success: the goal is reached, the iterative method can terminate
* successfully.
* <li> @p failure: the iterative method should stop because convergence
* could not be achieved or at least was not achieved within the given
* maximal number of iterations.
* </ul>
*
* @author Guido Kanschat
*/
class SolverControl : public Subscriptor
{
public:
/**
* Enum denoting the different states a solver can be in. See the general
* documentation of this class for more information.
*/
enum State
{
/// Continue iteration
iterate = 0,
/// Stop iteration, goal reached
success,
/// Stop iteration, goal not reached
failure
};
/**
* Class to be thrown upon failing convergence of an iterative solver,
* when either the number of iterations exceeds the limit or the residual
* fails to reach the desired limit, e.g. in the case of a break-down.
*
* The residual in the last iteration, as well as the iteration number of
* the last step are stored in this object and can be recovered upon
* catching an exception of this class.
*/
class NoConvergence : public dealii::ExceptionBase
{
public:
NoConvergence (const unsigned int last_step,
const double last_residual)
: last_step (last_step), last_residual(last_residual)
{}
virtual ~NoConvergence () throw () {}
virtual void print_info (std::ostream &out) const
{
out << "Iterative method reported convergence failure in step "
<< last_step << " with residual " << last_residual << std::endl;
}
/**
* Iteration number of the last step.
*/
const unsigned int last_step;
/**
* Residual in the last step.
*/
const double last_residual;
};
/**
* Constructor. The parameters @p n and @p tol are the maximum number of
* iteration steps before failure and the tolerance to determine success
* of the iteration.
*
* @p log_history specifies whether the history (i.e. the value to be
* checked and the number of the iteration step) shall be printed to @p
* deallog stream. Default is: do not print. Similarly, @p log_result
* specifies the whether the final result is logged to @p deallog.
* Default is yes.
*/
SolverControl (const unsigned int n = 100,
const double tol = 1.e-10,
const bool log_history = false,
const bool log_result = true);
/**
* Virtual destructor is needed as there are virtual functions in this
* class.
*/
virtual ~SolverControl();
/**
* Interface to parameter file.
*/
static void declare_parameters (ParameterHandler ¶m);
/**
* Read parameters from file.
*/
void parse_parameters (ParameterHandler ¶m);
/**
* Decide about success or failure of an iteration. This function gets
* the current iteration step to determine, whether the allowed number of
* steps has been exceeded and returns @p failure in this case. If @p
* check_value is below the prescribed tolerance, it returns @p success.
* In all other cases @p iterate is returned to suggest continuation of
* the iterative procedure.
*
* The iteration is also aborted if the residual becomes a denormalized
* value (@p NaN). Note, however, that this check is only performed if
* the @p isnan function is provided by the operating system, which is
* not always true. The @p configure scripts checks for this and sets the
* flag @p HAVE_ISNAN in the file <tt>Make.global_options</tt> if this
* function was found.
*
* <tt>check()</tt> additionally preserves @p step and @p check_value.
* These values are accessible by <tt>last_value()</tt> and
* <tt>last_step()</tt>.
*
* Derived classes may overload this function, e.g. to log the
* convergence indicators (@p check_value) or to do other computations.
*/
virtual State check (const unsigned int step,
const double check_value);
/**
* Return the result of the last check operation.
*/
State last_check() const;
/**
* Return the initial convergence criterion.
*/
double initial_value() const;
/**
* Return the convergence value of last iteration step for which @p check
* was called by the solver.
*/
double last_value() const;
/**
* Number of last iteration step.
*/
unsigned int last_step() const;
/**
* Maximum number of steps.
*/
unsigned int max_steps () const;
/**
* Change maximum number of steps.
*/
unsigned int set_max_steps (const unsigned int);
/**
* Enables the failure check. Solving is stopped with @p ReturnState @p
* failure if <tt>residual>failure_residual</tt> with
* <tt>failure_residual:=rel_failure_residual*first_residual</tt>.
*/
void set_failure_criterion (const double rel_failure_residual);
/**
* Disables failure check and resets @p relative_failure_residual and @p
* failure_residual to zero.
*/
void clear_failure_criterion ();
/**
* Tolerance.
*/
double tolerance () const;
/**
* Change tolerance.
*/
double set_tolerance (const double);
/**
* Enables writing residuals of each step into a vector for later
* analysis.
*/
void enable_history_data();
/**
* Average error reduction over all steps.
*
* Requires enable_history_data()
*/
double average_reduction() const;
/**
* Error reduction of the last step; for stationary iterations, this
* approximates the norm of the iteration matrix.
*
* Requires enable_history_data()
*/
double final_reduction() const;
/**
* Error reduction of any iteration step.
*
* Requires enable_history_data()
*/
double step_reduction(unsigned int step) const;
/**
* Log each iteration step. Use @p log_frequency for skipping steps.
*/
void log_history (const bool);
/**
* Returns the @p log_history flag.
*/
bool log_history () const;
/**
* Set logging frequency.
*/
unsigned int log_frequency (unsigned int);
/**
* Log start and end step.
*/
void log_result (const bool);
/**
* Returns the @p log_result flag.
*/
bool log_result () const;
/**
* This exception is thrown if a function operating on the vector of
* history data of a SolverControl object id called, but storage of
* history data was not enabled by enable_history_data().
*/
DeclException0(ExcHistoryDataRequired);
protected:
/**
* Maximum number of steps.
*/
unsigned int maxsteps;
/**
* Prescribed tolerance to be achieved.
*/
double tol;
/**
* Result of last check operation.
*/
State lcheck;
/**
* Initial value.
*/
double initial_val;
/**
* Last value of the convergence criterion.
*/
double lvalue;
/**
* Last step.
*/
unsigned int lstep;
/**
* Is set to @p true by @p set_failure_criterion and enables failure
* checking.
*/
bool check_failure;
/**
* Stores the @p rel_failure_residual set by @p set_failure_criterion
*/
double relative_failure_residual;
/**
* @p failure_residual equals the first residual multiplied by @p
* relative_crit set by @p set_failure_criterion (see there).
*
* Until the first residual is known it is 0.
*/
double failure_residual;
/**
* Log convergence history to @p deallog.
*/
bool m_log_history;
/**
* Log only every nth step.
*/
unsigned int m_log_frequency;
/**
* Log iteration result to @p deallog. If true, after finishing the
* iteration, a statement about failure or success together with @p lstep
* and @p lvalue are logged.
*/
bool m_log_result;
/**
* Control over the storage of history data. Set by
* enable_history_data().
*/
bool history_data_enabled;
/**
* Vector storing the result after each iteration step for later
* statistical analysis.
*
* Use of this vector is enabled by enable_history_data().
*/
std::vector<double> history_data;
};
/**
* Specialization of @p SolverControl which returns @p success if either
* the specified tolerance is achieved or if the initial residual (or
* whatever criterion was chosen by the solver class) is reduced by a
* given factor. This is useful in cases where you don't want to solve
* exactly, but rather want to gain two digits or if the maximal
* number of iterations is achieved. For example: The maximal number
* of iterations is 20, the reduction factor is 1% und the tolerance
* is 0.1%. The initial residual is 2.5. The process will break if 20
* iteration are comleted or the new residual is less then 2.5*1% or
* if it is less then 0.1%.
*
* @author Guido Kanschat
*/
class ReductionControl : public SolverControl
{
public:
/**
* Constructor. Provide the reduction factor in addition to arguments
* that have the same meaning as those of the constructor of the
* SolverControl constructor.
*/
ReductionControl (const unsigned int maxiter = 100,
const double tolerance = 1.e-10,
const double reduce = 1.e-2,
const bool log_history = false,
const bool log_result = true);
/**
* Initialize with a SolverControl object. The result will emulate
* SolverControl by setting #reduce to zero.
*/
ReductionControl (const SolverControl &c);
/**
* Assign a SolverControl object to ReductionControl. The result of the
* assignment will emulate SolverControl by setting #reduce to zero.
*/
ReductionControl &operator= (const SolverControl &c);
/**
* Virtual destructor is needed as there are virtual functions in this
* class.
*/
virtual ~ReductionControl();
/**
* Interface to parameter file.
*/
static void declare_parameters (ParameterHandler ¶m);
/**
* Read parameters from file.
*/
void parse_parameters (ParameterHandler ¶m);
/**
* Decide about success or failure of an iteration. This function calls
* the one in the base class, but sets the tolerance to <tt>reduction *
* initial value</tt> upon the first iteration.
*/
virtual State check (const unsigned int step,
const double check_value);
/**
* Reduction factor.
*/
double reduction () const;
/**
* Change reduction factor.
*/
double set_reduction (const double);
protected:
/**
* Desired reduction factor.
*/
double reduce;
/**
* Reduced tolerance. Stop iterations if either this value is achieved or
* if the base class indicates success.
*/
double reduced_tol;
};
/**
* Specialization of @p SolverControl which returns @p success if a given
* number of iteration was performed, irrespective of the actual
* residual. This is useful in cases where you don't want to solve exactly,
* but rather want to perform a fixed number of iterations, e.g. in an inner
* solver. The arguments given to this class are exactly the same as for the
* SolverControl class and the solver terminates similarly when one of the
* given tolerance or the maximum iteration count were reached. The only
* difference to SolverControl is that the solver returns success in the
* latter case.
*
* @author Martin Kronbichler
*/
class IterationNumberControl : public SolverControl
{
public:
/**
* Constructor. Provide exactly the same arguments as the constructor of
* the SolverControl class.
*/
IterationNumberControl (const unsigned int maxiter = 100,
const double tolerance = 1e-12,
const bool log_history = false,
const bool log_result = true);
/**
* Initialize with a SolverControl object. The result will emulate
* SolverControl by setting #reduce to zero.
*/
IterationNumberControl (const SolverControl &c);
/**
* Assign a SolverControl object to ReductionControl. The result of the
* assignment will emulate SolverControl by setting #reduce to zero.
*/
IterationNumberControl &operator= (const SolverControl &c);
/**
* Virtual destructor is needed as there are virtual functions in this
* class.
*/
virtual ~IterationNumberControl();
/**
* Decide about success or failure of an iteration. This function bases
* success solely on the fact if a given number of iterations was reached or
* the check value reached exactly zero.
*/
virtual State check (const unsigned int step,
const double check_value);
};
/*@}*/
//---------------------------------------------------------------------------
#ifndef DOXYGEN
inline unsigned int
SolverControl::max_steps () const
{
return maxsteps;
}
inline unsigned int
SolverControl::set_max_steps (const unsigned int newval)
{
unsigned int old = maxsteps;
maxsteps = newval;
return old;
}
inline void
SolverControl::set_failure_criterion (const double rel_failure_residual)
{
relative_failure_residual=rel_failure_residual;
check_failure=true;
}
inline void
SolverControl::clear_failure_criterion ()
{
relative_failure_residual=0;
failure_residual=0;
check_failure=false;
}
inline double
SolverControl::tolerance () const
{
return tol;
}
inline double
SolverControl::set_tolerance (const double t)
{
double old = tol;
tol = t;
return old;
}
inline void
SolverControl::log_history (const bool newval)
{
m_log_history = newval;
}
inline bool
SolverControl::log_history () const
{
return m_log_history;
}
inline void
SolverControl::log_result (const bool newval)
{
m_log_result = newval;
}
inline bool
SolverControl::log_result () const
{
return m_log_result;
}
inline double
ReductionControl::reduction () const
{
return reduce;
}
inline double
ReductionControl::set_reduction (const double t)
{
double old = reduce;
reduce = t;
return old;
}
#endif // DOXYGEN
DEAL_II_NAMESPACE_CLOSE
#endif
|