Ipopt  trunk
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
Public Member Functions | Private Attributes
Ipopt::SymScaledMatrix Class Reference

Class for a Matrix in conjunction with its scaling factors for row and column scaling. More...

#include <IpSymScaledMatrix.hpp>

+ Inheritance diagram for Ipopt::SymScaledMatrix:

List of all members.

Public Member Functions

void SetUnscaledMatrix (const SmartPtr< const SymMatrix > unscaled_matrix)
 Set the unscaled matrix.
void SetUnscaledMatrixNonConst (const SmartPtr< SymMatrix > &unscaled_matrix)
 Set the unscaled matrix in a non-const version.
SmartPtr< const SymMatrixGetUnscaledMatrix () const
 Return the unscaled matrix in const form.
SmartPtr< SymMatrixGetUnscaledMatrixNonConst ()
 Return the unscaled matrix in non-const form.
SmartPtr< const VectorRowColScaling () const
 return the vector for the row and column scaling
Constructors / Destructors
 SymScaledMatrix (const SymScaledMatrixSpace *owner_space)
 Constructor, taking the owner_space.
 ~SymScaledMatrix ()
 Destructor.

Protected Member Functions

Methods overloaded from Matrix
virtual void MultVectorImpl (Number alpha, const Vector &x, Number beta, Vector &y) const
 Matrix-vector multiply.
virtual bool HasValidNumbersImpl () const
 Method for determining if all stored numbers are valid (i.e., no Inf or Nan).
virtual void ComputeRowAMaxImpl (Vector &rows_norms, bool init) const
 Compute the max-norm of the rows in the matrix.
virtual void PrintImpl (const Journalist &jnlst, EJournalLevel level, EJournalCategory category, const std::string &name, Index indent, const std::string &prefix) const
 Print detailed information about the matrix.

Private Member Functions

Default Compiler Generated Methods

(Hidden to avoid implicit creation/calling).

These methods are not implemented and we do not want the compiler to implement them for us, so we declare them private and do not define them. This ensures that they will not be implicitly created/called.

 SymScaledMatrix ()
 Default Constructor.
 SymScaledMatrix (const SymScaledMatrix &)
 Copy Constructor.
void operator= (const SymScaledMatrix &)
 Overloaded Equals Operator.

Private Attributes

SmartPtr< const SymMatrixmatrix_
 const version of the unscaled matrix
SmartPtr< SymMatrixnonconst_matrix_
 non-const version of the unscaled matrix
SmartPtr< const
SymScaledMatrixSpace
owner_space_
 Matrix space stored as a SymScaledMatrixSpace.

Detailed Description

Class for a Matrix in conjunction with its scaling factors for row and column scaling.

Operations on the matrix are performed using the scaled matrix. You can pull out the pointer to the unscaled matrix for unscaled calculations.

Definition at line 26 of file IpSymScaledMatrix.hpp.


Constructor & Destructor Documentation

Constructor, taking the owner_space.

Destructor.

Default Constructor.

Copy Constructor.


Member Function Documentation

void Ipopt::SymScaledMatrix::SetUnscaledMatrix ( const SmartPtr< const SymMatrix unscaled_matrix) [inline]

Set the unscaled matrix.

Definition at line 194 of file IpSymScaledMatrix.hpp.

void Ipopt::SymScaledMatrix::SetUnscaledMatrixNonConst ( const SmartPtr< SymMatrix > &  unscaled_matrix) [inline]

Set the unscaled matrix in a non-const version.

Definition at line 202 of file IpSymScaledMatrix.hpp.

Return the unscaled matrix in const form.

Definition at line 210 of file IpSymScaledMatrix.hpp.

Return the unscaled matrix in non-const form.

Definition at line 216 of file IpSymScaledMatrix.hpp.

return the vector for the row and column scaling

Definition at line 223 of file IpSymScaledMatrix.hpp.

virtual void Ipopt::SymScaledMatrix::MultVectorImpl ( Number  alpha,
const Vector x,
Number  beta,
Vector y 
) const [protected, virtual]

Matrix-vector multiply.

Computes y = alpha * Matrix * x + beta * y

Implements Ipopt::Matrix.

virtual bool Ipopt::SymScaledMatrix::HasValidNumbersImpl ( ) const [protected, virtual]

Method for determining if all stored numbers are valid (i.e., no Inf or Nan).

It is assumed here that the scaling factors are always valid numbers.

Reimplemented from Ipopt::Matrix.

virtual void Ipopt::SymScaledMatrix::ComputeRowAMaxImpl ( Vector rows_norms,
bool  init 
) const [protected, virtual]

Compute the max-norm of the rows in the matrix.

The result is stored in rows_norms. The vector is assumed to be initialized.

Implements Ipopt::Matrix.

virtual void Ipopt::SymScaledMatrix::PrintImpl ( const Journalist jnlst,
EJournalLevel  level,
EJournalCategory  category,
const std::string &  name,
Index  indent,
const std::string &  prefix 
) const [protected, virtual]

Print detailed information about the matrix.

Implements Ipopt::Matrix.

void Ipopt::SymScaledMatrix::operator= ( const SymScaledMatrix ) [private]

Overloaded Equals Operator.


Member Data Documentation

const version of the unscaled matrix

Definition at line 97 of file IpSymScaledMatrix.hpp.

non-const version of the unscaled matrix

Definition at line 99 of file IpSymScaledMatrix.hpp.

Matrix space stored as a SymScaledMatrixSpace.

Reimplemented from Ipopt::SymMatrix.

Definition at line 102 of file IpSymScaledMatrix.hpp.


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines