Ipopt::SymTMatrix Class Reference

Class for symmetric matrices stored in triplet format. More...

#include <IpSymTMatrix.hpp>

Inheritance diagram for Ipopt::SymTMatrix:
Inheritance graph
[legend]
Collaboration diagram for Ipopt::SymTMatrix:
Collaboration graph
[legend]

List of all members.

Public Member Functions

Constructors / Destructors



 SymTMatrix (const SymTMatrixSpace *owner_space)
 Constructor, taking the corresponding matrix space.
 ~SymTMatrix ()
 Destructor.
Changing the Values.



void SetValues (const Number *Values)
 Set values of nonzero elements.
Accessor Methods



Index Nonzeros () const
 Number of nonzero entries.
const IndexIrows () const
 Obtain pointer to the internal Index array irn_ without the intention to change the matrix data (USE WITH CARE!).
const IndexJcols () const
 Obtain pointer to the internal Index array jcn_ without the intention to change the matrix data (USE WITH CARE!).
NumberValues ()
 Obtain pointer to the internal Number array values_ with the intention to change the matrix data (USE WITH CARE!).
const NumberValues () const
 Obtain pointer to the internal Number array values_ without the intention to change the matrix data (USE WITH CARE!).
Methods for providing copy of the matrix data



void FillStruct (ipfint *Irn, ipfint *Jcn) const
 Copy the nonzero structure into provided space.
void FillValues (Number *Values) const
 Copy the value data into provided space.

Protected Member Functions

Methods overloaded from matrix



virtual void MultVectorImpl (Number alpha, const Vector &x, Number beta, Vector &y) const
 Method for determining if all stored numbers are valid (i.e., no Inf or Nan).
virtual bool HasValidNumbersImpl () const
 Method for determining if all stored numbers are valid (i.e., no Inf or Nan).
virtual void PrintImpl (const Journalist &jnlst, EJournalLevel level, EJournalCategory category, const std::string &name, Index indent, const std::string &prefix) const
 Method for determining if all stored numbers are valid (i.e., no Inf or Nan).

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.



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

Private Attributes

const SymTMatrixSpaceowner_space_
 Copy of the owner_space ptr as a SymTMatrixSpace insteaqd of a MatrixSpace.
Numbervalues_
 Values of nonzeros.
bool initialized_
 Flag for Initialization.

Detailed Description

Class for symmetric matrices stored in triplet format.

In the triplet format, the nonzeros elements of a symmetric matrix is stored in three arrays, Irn, Jcn, and Values, all of length Nonzeros. The first two arrays indicate the location of a non-zero element (as the row and column indices), and the last array stores the value at that location. Off-diagonal elements need to be stored only once since the matrix is symmetric. For example, the element $a_{1,2}=a_{2,1}$ would be stored only once, either with Irn[i]=1 and Jcn[i]=2, or with Irn[i]=2 and Jcn[i]=1. Both representations are identical. If nonzero elements (or their symmetric counter part) are listed more than once, their values are added.

The structure of the nonzeros (i.e. the arrays Irn and Jcn) cannot be changed after the matrix can been initialized. Only the values of the nonzero elements can be modified.

Note that the first row and column of a matrix has index 1, not 0.

Definition at line 42 of file IpSymTMatrix.hpp.


Constructor & Destructor Documentation

Ipopt::SymTMatrix::SymTMatrix ( const SymTMatrixSpace owner_space  ) 

Constructor, taking the corresponding matrix space.

Ipopt::SymTMatrix::~SymTMatrix (  ) 

Destructor.

Ipopt::SymTMatrix::SymTMatrix (  )  [private]

Default Constructor.

Ipopt::SymTMatrix::SymTMatrix ( const SymTMatrix  )  [private]

Copy Constructor.


Member Function Documentation

void Ipopt::SymTMatrix::SetValues ( const Number Values  ) 

Set values of nonzero elements.

The values of the nonzero elements is copied from the incoming Number array. Important: It is assume that the order of the values in Values corresponds to the one of Irn and Jcn given to the matrix space.

Index Ipopt::SymTMatrix::Nonzeros (  )  const [inline]

Number of nonzero entries.

Definition at line 232 of file IpSymTMatrix.hpp.

const Index * Ipopt::SymTMatrix::Irows (  )  const [inline]

Obtain pointer to the internal Index array irn_ without the intention to change the matrix data (USE WITH CARE!).

This does not produce a copy, and lifetime is not guaranteed!

Definition at line 238 of file IpSymTMatrix.hpp.

const Index * Ipopt::SymTMatrix::Jcols (  )  const [inline]

Obtain pointer to the internal Index array jcn_ without the intention to change the matrix data (USE WITH CARE!).

This does not produce a copy, and lifetime is not guaranteed!

Definition at line 244 of file IpSymTMatrix.hpp.

Number* Ipopt::SymTMatrix::Values (  ) 

Obtain pointer to the internal Number array values_ with the intention to change the matrix data (USE WITH CARE!).

This does not produce a copy, and lifetime is not guaranteed!

const Number* Ipopt::SymTMatrix::Values (  )  const

Obtain pointer to the internal Number array values_ without the intention to change the matrix data (USE WITH CARE!).

This does not produce a copy, and lifetime is not guaranteed!

void Ipopt::SymTMatrix::FillStruct ( ipfint Irn,
ipfint Jcn 
) const

Copy the nonzero structure into provided space.

void Ipopt::SymTMatrix::FillValues ( Number Values  )  const

Copy the value data into provided space.

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

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

Implements Ipopt::Matrix.

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

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

Reimplemented from Ipopt::Matrix.

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

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

Implements Ipopt::Matrix.

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

Overloaded Equals Operator.

Reimplemented from Ipopt::Matrix.


Member Data Documentation

Copy of the owner_space ptr as a SymTMatrixSpace insteaqd of a MatrixSpace.

Reimplemented from Ipopt::SymMatrix.

Definition at line 145 of file IpSymTMatrix.hpp.

Values of nonzeros.

Definition at line 148 of file IpSymTMatrix.hpp.

Flag for Initialization.

Definition at line 151 of file IpSymTMatrix.hpp.


The documentation for this class was generated from the following file:

Generated on 15 Mar 2015 for Coin-All by  doxygen 1.6.1